SQL Table Value Constructor – SELECT Statement (Create a Table With Value Generated By My Self)


/** Create a Table With Value Generated By My Self **/
SELECT * FROM 
(VALUES 
    /** First Value, Second Value In A Row**/
    ('David', 25),
    ('Brown', 26),
    ('Alex', 22)

) /** First Column Name, Second Column Name**/
as E(FirstName, Age);
#SQL #Table Value Constructor #SELECT Statement






你可能感興趣的文章

Day 104 期中測驗心得

Day 104 期中測驗心得

APIFlask 初始化專案 - Part2

APIFlask 初始化專案 - Part2

原型與繼承(1) - 建構式函式 & 閉包

原型與繼承(1) - 建構式函式 & 閉包






留言討論